home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / load_mapped.ifx < prev    next >
Text File  |  2004-08-03  |  786b  |  33 lines

  1. /*
  2.  * $VER: Load_Mapped.ifx 2.6 (24.04.96)
  3.  * Copyright © 1992-1996 Nova Design, Inc.
  4.  * Written by Thomas Krehbiel
  5.  *
  6.  * Load a file as a colormapped image.
  7.  *
  8.  * Inputs:
  9.  *    Word(Arg(1),1) = Frame number (1 - N)
  10.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  11.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  12.  *    Word(Arg(1),4) = Sequence number
  13.  *    Word(Arg(1),5) = Total number of frames (N)
  14.  *
  15.  * Returns:
  16.  *    0 if successful, non-zero on failure
  17.  *
  18.  */
  19.  
  20. OPTIONS RESULTS
  21.  
  22. /*
  23.  * AutoFX 2.6 now sets some clip variables.  If we find them, use them instead
  24.  * of the arg strings so that we can handle filenames with spaces in them.
  25.  */
  26.  
  27. MainName = GETCLIP('AUTOFX_MAIN')
  28. IF MainName = "" THEN MainName=word(Arg(1),2)
  29.  
  30. LoadMapped '"'MainName'"'
  31.  
  32. EXIT rc
  33.